783b9fe950c831ef2bad7f61d8fdf8c93c7698e6,portal-impl/src/com/liferay/portal/tools/sourceformatter/PropertiesSourceProcessor.java,PropertiesSourceProcessor,formatPortalPortalProperties,#,73

Before Change


			newContent = newContent.substring(0, newContent.length() - 1);
		}

		if (!content.equals(newContent)) {
			processFormattedFile(file, fileName, content, newContent);
		}

		return newContent;

After Change


			newContent = newContent.substring(0, newContent.length() - 1);
		}

		processFormattedFile(file, fileName, content, newContent);

		return newContent;
	}